The <tr> HTML part is used to make a row in a table. You can then make a row's boxes using a mix of <td> (data box) and <th> (header box) parts.
The <tr> tag makes a line in an HTML table.
The <tr> element is used to hold one or more <th> and/or <td> elements.
HTML Example
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset ="UTF-8">
<!--This is our webpage it's our very first webpage-->
<title>Levoric | HTML Fundamentle Tutorial</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!--Write your content here levoriclearn top degree online and program-->
<table>
<tr>
<td>Row 1, Cell 1</td>
<td>Row 1, Cell 2</td>
</tr>
<tr>
<td>Row 2, Cell 1</td>
<td>Row 2, Cell 2</td>
</tr>
</table>
<!--Write your content here levoriclearn top degree online and program-->
</body>
</html>